home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 January - Disc 2 / Macworld (1999-01) (Disk 2).dmg / Serious Demos / Symbolic Composer 4.2 / Environment / System / MRAC / Variations / permute < prev    next >
Lisp/Scheme  |  1998-08-11  |  241b  |  9 lines

  1. permute elements 
  2.  
  3. This function enables a source list of to generate multiple lists of all the permutations of the list.
  4.  
  5. (setq tempo (permute '(36 72 112)))
  6.  
  7. => ((36 72 112) (36 112 72) (72 36 112)
  8.     (72 112 36) (112 36 72) (112 72 36))
  9.